home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 18 / AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso / PD / Spiele / lazymines / lazymines_src / chunkyiclass.h < prev    next >
C/C++ Source or Header  |  1999-01-03  |  624b  |  32 lines

  1. #ifndef CHUNKYICLASS_H
  2. #define CHUNKYICLASS_H
  3. /*
  4.  * chunkyiclass.h
  5.  * ==============
  6.  * Interface to chunky image class.
  7.  *
  8.  * Copyright © 1995 Lorens Younes (d93-hyo@nada.kth.se)
  9.  */
  10.  
  11. #include <exec/types.h>
  12. #include <intuition/classes.h>
  13. #include <intuition/imageclass.h>
  14. #include <utility/tagitem.h>
  15.  
  16.  
  17. /* attributes defined by chunkyiclass */
  18. #define CHUNKYIA_SelectedBGPen   (TAG_USER + 1)
  19. #define CHUNKYIA_SelectedData    (TAG_USER + 2)
  20. #define CHUNKYIA_Palette         (TAG_USER + 3)
  21. #define CHUNKYIA_Screen          (TAG_USER + 4)
  22.  
  23.  
  24. Class *
  25. init_chunkyiclass (void);
  26.  
  27. BOOL
  28. free_chunkyiclass (
  29.    Class  *cl);
  30.  
  31. #endif
  32.